[linux] Make CONFIG_XEN_COMPAT #if statements syntactically correct.
authorChristian Limpach <Christian.Limpach@xensource.com>
Wed, 11 Apr 2007 17:39:05 +0000 (18:39 +0100)
committerChristian Limpach <Christian.Limpach@xensource.com>
Wed, 11 Apr 2007 17:39:05 +0000 (18:39 +0100)
Signed-off-by: Christian Limpach <Christian.Limpach@xensource.com>
linux-2.6-xen-sparse/include/asm-i386/mach-xen/asm/pgtable.h
linux-2.6-xen-sparse/include/asm-x86_64/mach-xen/asm/pgtable.h

index 7f448182973ec01ace4b81011d9a2b028f45221a..276309ce731d8f7dadff505f0e7ff35d8e63ef1d 100644 (file)
@@ -210,7 +210,7 @@ extern unsigned long pg0[];
 
 /* To avoid harmful races, pmd_none(x) should check only the lower when PAE */
 #define pmd_none(x)    (!(unsigned long)pmd_val(x))
-#ifdef CONFIG_XEN_COMPAT <= 0x030002
+#if CONFIG_XEN_COMPAT <= 0x030002
 /* pmd_present doesn't just test the _PAGE_PRESENT bit since wr.p.t.
    can temporarily clear it. */
 #define pmd_present(x) (pmd_val(x))
index 7a5662620d214d325add8a91a5dff6c674e200f1..0c14e0122d80832f704baa42dcda02e591077bdb 100644 (file)
@@ -411,7 +411,7 @@ static inline int pmd_large(pmd_t pte) {
 #define pmd_offset(dir, address) ((pmd_t *) pud_page(*(dir)) + \
                                   pmd_index(address))
 #define pmd_none(x)    (!pmd_val(x))
-#ifdef CONFIG_XEN_COMPAT <= 0x030002
+#if CONFIG_XEN_COMPAT <= 0x030002
 /* pmd_present doesn't just test the _PAGE_PRESENT bit since wr.p.t.
    can temporarily clear it. */
 #define pmd_present(x) (pmd_val(x))